home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / wx_lib10.zoo / makefile.gcc next >
Makefile  |  1992-08-02  |  492b  |  22 lines

  1. ARCHIV = gcc-ar.ttp
  2. WINLIB = wx_lib.olb
  3. LIBHDR = wx_lib.h
  4. REPLAC = -r
  5. WINTST = wx_tst.prg
  6. LIBOBJ = wx_clear.o wx_close.o wx_free.o wx_full.o wx_get.o\
  7. wx_info.o wx_init.o wx_move.o wx_name.o wx_new.o wx_open.o wx_print.o\
  8. wx_puts.o wx_outst.o wx_fscro.o wx_setcl.o wx_setty.o wx_size.o
  9. LIBG = -lwx_lib -lgem
  10.  
  11. all : clean $(WINLIB) $(WINTST)
  12.  
  13. $(WINLIB) : $(LIBOBJ)
  14.     $(ARCHIV) $(REPLAC) $(WINLIB) $(LIBOBJ)
  15.  
  16. $(WINTST) : $(WINLIB)
  17.  
  18. $(LIBOBJ) : $(LIBHDR)
  19.  
  20. clean :
  21.     $(RM) *.o
  22.